home *** CD-ROM | disk | FTP | other *** search
- set output error
- set display page 23
- set more 1
- #delimit ;
-
- di _n(5) in white
- " ___ ____ ____ ____ ____ tm" _col(68) in green "page 1 of 2" in white _n
- " /__ / ____/ / ____/" _n
- "___/ / /___/ / /___/ Tutorials" _n
- "-----------------------------------------" _n(2) ;
-
- di in green "Filename" _col(17) "Description" _n
- in white _dup(79) "-" _n(2)
- "intro.tut" _col(17) in gr "An introduction to Stata" _n(2)
- in wh "graphics.tut" _col(17) in gr "How to make graphs" _n
- in wh "tables.tut" _col(17) in gr "How to make tables" _n ;
-
- di
- in wh "anova.tut" _col(17) in gr
- "Estimating one-, two- and N-way ANOVA and ANOCOVA models" _n
- in wh "regress.tut" _col(17) in gr
- "Estimating regression models, including 2SLS" _n
- in wh "probit.tut" _col(17) in gr
- "Estimating maximum-likelihood probit and logit models" _n
- in wh "survive.tut" _col(17) in gr
- "Estimating maximum-likelihood survival models" _n ;
-
- di
- in wh "statkit.tut" _col(17) in gr
- "Use of Stat.Kit extensions to Stata" _n
- in wh "graphkit.tut" _col(17) in gr
- "Use of Graph.Kit extensions to Stata" _n
- in wh "datakit.tut" _col(17) in gr
- "Use of Data.Kit extensions to Stata" _n
- in wh "qckit.tut" _col(17) in gr
- "Use of QC.Kit quality control charts" _n ;
-
- #delimit cr
- mac def path
- capture run nullfile.tut
- if _rc {
- mac def path "\stata\"
- capture run %path`nullfile.tut
- if _rc {
- mac def path "/usr/stata/"
- capture run %path`nullfile.tut
- if _rc {
- #delimit ;
- di in red
- "I cannot find the other tutorial files. I have looked in the current" _n
- "directory and in \stata (DOS) or /usr/stata (Unix). Is Stata installed" _n
- "correctly?" _n(2)
- "In any case, I cannot run the tutorial." ;
- #delimit cr
- exit
- }
- }
- }
- #delimit ;
-
- set more 0 ; more ; set more 1 ;
-
- di _n(4) in gr "Stata tutorials" _col(68) "page 2 of 2" _n(2)
- in green "Filename" _col(17) "Description" _n
- in white _dup(79) "-" _n(2)
- "ourdata.tut" _col(17) in gr "Description of the data we provide" _n
- in wh "yourdata.tut" _col(17) in gr
- "How to input your own data into Stata" _n(2) ;
-
-
- di in gr
- "To run a tutorial, type '"
- in wh "do %path`_____.tut" in gr "', filling in the blank" _n
- "with a filename from the list above. We recommend you run "
- in wh "intro.tut" in gr _n
- "first. After that, run the tutorials in whatever order you desire." _n ;
-
- di _n(2) in gr "Remember:" _n
- " You can always type '"
- in wh "help" in gr "' (or press "
- in wh "F1" in gr " followed by " in wh "Return" in gr ")." _n
- " DOS users can invoke the menu system by pressing " in wh "F10"
- in gr "." _n
- " You can see a list of all tutorials by typing '"
- in wh "do %path`contents.tut" in gr "'" _n
- " (or by simply pressing " in wh "F5" in gr ")." _n
- " You can leave Stata by typing '"
- in wh "exit, clear" in gr "'" _n(2) ;
-
- mac def F5 "do %path`contents.tut;" ;
-
- set more 0 ; more ;
- exit ;
-
-
- *│ You can leave STATA and return to DOS by typing "exit, clear". │
- *└──────────────────────────────────────────────────────────────────────────┘
- more